func sync/atomic.LoadInt32

15 uses

	sync/atomic (current package)
		doc.go#L177: func LoadInt32(addr *int32) (val int32)
		type.go#L74: func (x *Int32) Load() int32 { return LoadInt32(&x.v) }

	go/types
		check.go#L55: 	inuse := atomic.LoadInt32(&_aliasAny)

	google.golang.org/grpc/internal/channelz
		channel.go#L264: 	i := atomic.LoadInt32(&c.traceRefCount)
		funcs.go#L55: 	return atomic.LoadInt32(&curState) == 1
		subchannel.go#L147: 	i := atomic.LoadInt32(&sc.traceRefCount)
		trace.go#L49: 	i := atomic.LoadInt32(&maxTraceEntry)

	google.golang.org/grpc/internal/idle
		idle.go#L113: 	if atomic.LoadInt32(&m.activeCallsCount) > 0 {
		idle.go#L120: 	if atomic.LoadInt32(&m.activeSinceLastTimerCheck) == 1 {
		idle.go#L164: 	if atomic.LoadInt32(&m.activeCallsCount) != -math.MaxInt32 {
		idle.go#L169: 	if atomic.LoadInt32(&m.activeSinceLastTimerCheck) == 1 {
		idle.go#L267: 	return atomic.LoadInt32(&m.closed) == 1

	google.golang.org/grpc/internal/transport
		flowcontrol.go#L55: 		if atomic.LoadInt32(&w.quota) > 0 {

	google.golang.org/protobuf/internal/impl
		encode.go#L56: 		if size := atomic.LoadInt32(p.Apply(mi.sizecacheOffset).Int32()); size > 0 {
		lazy.go#L41: 	return atomic.LoadInt32(&enableLazy) != 0